home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / RCS / time.c,v < prev    next >
Text File  |  1988-07-02  |  780b  |  53 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.07.02.14.54.35;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * Copyright (c) 1980 Regents of the University of California.
  26.  * All rights reserved.  The Berkeley software License Agreement
  27.  * specifies the terms and conditions for redistribution.
  28.  */
  29.  
  30. #if defined(LIBC_SCCS) && !defined(lint)
  31. static char sccsid[] = "@@(#)time.c    5.3 (Berkeley) 3/9/86";
  32. #endif LIBC_SCCS and not lint
  33.  
  34. /*
  35.  * Backwards compatible time call.
  36.  */
  37. #include <sys/types.h>
  38. #include <sys/time.h>
  39.  
  40. long
  41. time(t)
  42.     time_t *t;
  43. {
  44.     struct timeval tt;
  45.  
  46.     if (gettimeofday(&tt, (struct timezone *)0) < 0)
  47.         return (-1);
  48.     if (t)
  49.         *t = tt.tv_sec;
  50.     return (tt.tv_sec);
  51. }
  52. @
  53.